home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / COMMUNIC / 1154.ZIP / COMMIE.EXT < prev    next >
Text File  |  1988-06-29  |  3KB  |  55 lines

  1. ; This file lists the external file transfer protocols available and
  2. ; defines how they are called. Each line comprises 5 fields, separated
  3. ; by commas. The 5 fields are as follows:
  4. ;
  5. ;   Field 1:  'U' for an upload protocol or 'D' for a download protocol
  6. ;
  7. ;   Field 2:  The menu entry. Up to 15 characters enclosed in quotes.
  8. ;
  9. ;   Field 3:  Defines whether filenames must be manually entered by the user:
  10. ;
  11. ;                       '0' - no filenames to be entered
  12. ;                       '1' - a single filename
  13. ;                       '2' - multiple filenames
  14. ;                      '-1' - for XMODEM - single filename implied by text
  15. ;
  16. ;   Field 4:  The DOS command line to call the external protocol. Up to 50
  17. ;             characters enclosed in quotes. The following special sets of
  18. ;             characters may be included, and will be translated when the
  19. ;             command line is passed to DOS:
  20. ;
  21. ;                       %C - the communication port in use
  22. ;                       %B - the current baud rate
  23. ;                       %P - the parity 'n', 'e' or 'o'
  24. ;                       %F - the filename(s) to be transferred
  25. ;
  26. ;
  27. ;   Field 5:  Description of the key combination, if any, to abort the transfer,
  28. ;             enclosed in quotes. eg. "Esc". Up to 14 characters may be used.
  29. ;
  30. ;   NOTE THAT ALL FIELDS MUST BE SHOWN. A NULL STRING MUST BE SHOWN AS "".
  31. ;
  32. ; Any line beginning with a semicolon (such as this one) will be regarded as
  33. ; a comment. Blank lines will be ignored.
  34.  
  35. U,"Kermit",2,"pckermit -l COM%C -b %B -p %P -s %F",""
  36. U,"Megalink",2,"mlink16 PORT %C SPEED %B SM %F","ESC"
  37. U,"Sealink",2,"clink T %F","ESC"
  38. U,"Wxmodem",-1,"wxmodem -b %B -l com%C -p %P -s -f %F","Ctrl-X"
  39. U,"Xmodem",-1,"dsz port %C d sx %F","Ctrl-Break"
  40. U,"Xmodem 1k",-1,"dsz port %C d sx -k %F","Ctrl-Break"
  41. U,"Ymodem",2,"dsz port %C d sb %F","Ctrl-Break"
  42. U,"Ymodem 1k",2,"dsz port %C d sb -k %F","Ctrl-Break"
  43. U,"Ymodem-g",2,"dsz port %C d sb -g %F","Ctrl-Break"
  44. U,"Zmodem",2,"dsz port %C d sz %F","Ctrl-Break"
  45.  
  46. D,"Kermit",0,"pckermit -l COM%C -b %B -p %P -r",""
  47. D,"Megalink",0,"mlink16 PORT %C SPEED %B RM","ESC"
  48. D,"Sealink",0,"clink R","ESC"
  49. D,"Wxmodem",-1,"wxmodem -b %B -l COM%C -p %P -r -f %F","Ctrl-X"
  50. D,"Xmodem checksum",-1,"dsz port %C d rx -y %F","Ctrl-Break"
  51. D,"Xmodem CRC / 1k",-1,"dsz port %C d rx -c -y %F","Ctrl-Break"
  52. D,"Ymodem",0,"dsz port %C d rb -y","Ctrl-Break"
  53. D,"Ymodem-g",0,"dsz port %C d rb -g -y","Ctrl-Break"
  54. D,"Zmodem",0,"dsz port %C d rz -y","Ctrl-Break"
  55.